home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / awe2-0_1.lha / awe2-0.1 / Src / RCS / ExceptionClass.cc,v < prev    next >
Text File  |  1989-02-23  |  950b  |  71 lines

  1. head     3.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    grunwald:3.2; strict;
  6. comment  @@;
  7.  
  8.  
  9. 3.2
  10. date     89.02.20.15.34.24;  author grunwald;  state Exp;
  11. branches ;
  12. next     3.1;
  13.  
  14. 3.1
  15. date     88.12.20.13.48.42;  author grunwald;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     88.10.30.13.03.06;  author grunwald;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 3.2
  30. log
  31. @Start using Gnu library heaps for schedulers
  32. @
  33. text
  34. @// This may look like C code, but it is really -*- C++ -*-
  35. // 
  36. // Copyright (C) 1988 University of Illinois, Urbana, Illinois
  37. //
  38. // written by Dirk Grunwald (grunwald@@cs.uiuc.edu)
  39. //
  40. #include "ExceptionClass.h"
  41. #include "CpuMultiplexor.h"
  42. #include "stream.h"
  43.  
  44. void
  45. ExceptionClass::handleException()
  46. {
  47.     void exit(int);
  48.  
  49.     CpuCerrLock.reserve();
  50.     cerr << ThisCpu -> name() << "Unknown exception\n";
  51.     CpuCerrLock.release();
  52.     exit(1);
  53. }
  54. @
  55.  
  56.  
  57. 3.1
  58. log
  59. @Steay version
  60. @
  61. text
  62. @@
  63.  
  64.  
  65. 1.1
  66. log
  67. @Initial revision
  68. @
  69. text
  70. @@
  71.